home *** CD-ROM | disk | FTP | other *** search
- on hPressButton
- set vSprite to the clickOn
- set vCastNo to the castNum of sprite vSprite
- set vCastNam to the name of cast vCastNo
- puppetSprite(vSprite, 1)
- if (vCastNam = 0) or (vCastNam = EMPTY) then
- set the castNum of sprite vSprite to vCastNo + 1
- else
- if vCastNam contains "ROLLOVER" then
- set the castNum of sprite vSprite to vCastNo + 1
- else
- set the castNum of sprite vSprite to the number of cast (vCastNam & "-down")
- end if
- end if
- updateStage()
- repeat while the stillDown
- nothing()
- end repeat
- if (vCastNam = 0) or (vCastNam = EMPTY) then
- set the castNum of sprite vSprite to vCastNo
- else
- set the castNum of sprite vSprite to the number of cast vCastNam
- end if
- puppetSprite(vSprite, 0)
- updateStage()
- if the mouseCast = the castNum of sprite vSprite then
- return 1
- else
- return 0
- end if
- end
-
- on hRolloverScript vFrameLabel
- global gLastSprite
- set vNowSprite to 0
- if rollOver(2) then
- set vNowSprite to 2
- end if
- if not (vNowSprite = 0) then
- set vCastNo to the castNum of sprite vNowSprite
- set vCastName to the name of cast vCastNo
- if (vCastName contains "NOOP") or (vCastName contains "DOWN") then
- set vNowSprite to 0
- end if
- end if
- if not (vNowSprite = 0) then
- hRollOverOn(vNowSprite)
- set gLastSprite to vNowSprite
- else
- puppetSprite(gLastSprite, 0)
- set gLastSprite to 0
- end if
- end
-
- on hRollOverOn vNowSprite
- global gLastSprite
- if not (gLastSprite = vNowSprite) then
- set vCastNo to the castNum of sprite vNowSprite
- set vCastNam to the name of cast vCastNo
- puppetSprite(vNowSprite, 1)
- set the castNum of sprite vNowSprite to the number of cast (vCastNam & "-ROLLOVER")
- if not (gLastSprite = 0) then
- puppetSprite(gLastSprite, 0)
- updateStage()
- end if
- else
- nothing()
- end if
- end
-